/* Modal Content */
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* margin: auto; */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    position: absolute;
    right: -20px;
    top: -20px;
    color: #fff;
    background-color: var(--primary-color);
    padding: 10px 12px;
    border-radius: 50%;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* responesive */
@media (min-width: 740px) {
    /* The Modal (background) */

    /* Modal Content */
    .modal-content {
        /* max-width: 80%; */
        width: fit-content;
    }

    /* The Close Button */
}
@media (min-width: 1113px) {
}
